The publications section type displays a list of papers. Each paper entry goes inside the papers[] array.
Each paper must have a unique entry. You can't add the same paper twice.
Wrong — duplicate paper entries:
{
"label": "PUBLICATIONS",
"papers": [
{ "title": "Paper A", "authors": "Author", "url": "#", "meta": "Journal" },
{ "title": "Paper A", "authors": "Author", "url": "#", "meta": "Journal" }
]
}
Right — unique papers:
{
"label": "PUBLICATIONS",
"papers": [
{ "title": "Paper A", "authors": "Author", "url": "#", "meta": "Journal, 2024" },
{ "title": "Paper B", "authors": "Author", "url": "#", "meta": "Journal, 2023" }
]
}
Publications is a dedicated section type with "type": "publications". You can only have one papers[] array per section.
These are the available options for each paper:
| Field | Description |
|---|---|
title | Paper title |
authors | Author list |
url | Link URL for the title |
meta | Journal name, year, venue (italic) |
text | Optional abstract or description |
image | Optional thumbnail image |
image_alt | Alt text for the image |
caption | Text below the image |
credit | Top-right credit label on image |
w, h | Image dimensions |
numbered | Set true to prefix papers with numbers |
Set numbered to true at the section level to prefix each paper with a number.
{
"label": "PUBLICATIONS",
"numbered": true,
"papers": [
{ "title": "Paper Title", "authors": "Author", "url": "#", "meta": "Journal" }
]
}
Paper Title
Author, A. — Journal, Year
{
"title": "Paper Title",
"authors": "Author, A.",
"url": "#",
"meta": "Journal, Year"
}
Paper Title
Author, B. — Journal, Year
This paper explores the topic in detail.
{
"title": "Paper Title",
"authors": "Author, B.",
"url": "#",
"meta": "Journal, Year",
"text": "Description here."
}
Paper Title
Author, C. — Journal, Year
Description text.
{
"title": "Paper Title",
"authors": "Author, C.",
"url": "#",
"meta": "Journal, Year",
"text": "Description text.",
"image": "path/to/image.jpg",
"w": 400,
"h": 300
}
{
"title": "Paper Title",
"authors": "Author, D.",
"url": "#",
"meta": "Journal, Year",
"text": "Description text.",
"image": "path/to/image.jpg",
"credit": "Credit Name",
"w": 400,
"h": 300
}
{
"title": "Paper Title",
"authors": "Author, E.",
"url": "#",
"meta": "Journal, Year",
"text": "Description text.",
"image": "path/to/image.jpg",
"credit": "Credit Name",
"caption": "Caption text below image.",
"w": 400,
"h": 300
}
Paper Title
Author, F. — Journal, Year
{
"title": "Paper Title",
"authors": "Author, F.",
"url": "#",
"meta": "Journal, Year",
"image": "path/to/image.jpg",
"w": 400,
"h": 300
}